home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / npp / np.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  959 b   |  41 lines

  1. // np.h : main header file for the NP application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. // application defines
  11. #define COMBO_HEIGHT 100    // width of edit control for combobox
  12. #define COMBO_WIDTH  160    // drop down height
  13.  
  14. #define TIMER_ID 2            // timer ID for clock on status bar
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CNotepadApp:
  18. // See np.cpp for the implementation of this class
  19. //
  20.  
  21. class CNotepadApp : public CWinApp
  22. {
  23. public:
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CNotepadApp)
  27.     public:
  28.     virtual BOOL InitInstance();
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32.  
  33.     //{{AFX_MSG(CNotepadApp)
  34.     afx_msg void OnAppAbout();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.